home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / libmat.lha / src / dealloc.cc < prev    next >
C/C++ Source or Header  |  1980-01-01  |  175b  |  11 lines

  1. //                MATRIX LIB
  2. //            TOMMY JOHANSSON 1995
  3.  
  4. #include "matrix.h"
  5. void dealloc(float **temp,int col)
  6. {
  7.     int i,j;
  8.     for(i=0;i<=col-1;i++)
  9.         delete [] *(temp+i);
  10.     delete [] temp;
  11. }